* Operator

Used to multiply two numbers.


Syntax

result=expression1 * expression2

PartTypeDescription
result Number The product of expression1 and expression2.
expression1 Number Any numeric expression.
expression2 Number Any numeric expression.


Notes

You can use Operator_Multiply to define the * operator for classes.


Examples

This example stores the product of two numbers in a variable:

Dim x as Integer
x=50*30   //x is 1500

See Also

Operator_Multiply function.